1. NodeBox 1
    1. Homepage
    2. NodeBox 3Node-based app for generative design and data visualization
    3. NodeBox OpenGLHardware-accelerated cross-platform graphics library
    4. NodeBox 1Generate 2D visuals using Python code (Mac OS X only)
  2. Gallery
  3. Documentation
  4. Forum
  5. Blog

Reference | align()


Syntax
align(align=LEFT)

DescriptionSets the alignment of text in a block. Text in a block wraps across multiple lines when the width parameter of the text() command is specified. The parameter for align() can be either LEFT, RIGHT, CENTER, JUSTIFY.
Returnsthe current alignment


Example
fill(0.2)
fontsize(16)
align(RIGHT)
quip = "If it ain't fun make it fun"
text(quip, 10, 55, width=90)